home *** CD-ROM | disk | FTP | other *** search
- ;SOUND GUI file viewer V1.11
- ;©1995 Ivan Smith
- ;For WorBench 3.X+ ONLY!
- ;Requestchoice and Requestfile must be in you C: dir.
-
-
- LAB Start
- C:Requestchoice >env:SNDchoice "AUDIO""Choose*nYour Player""Play16""Play16HI FI""OmniPlay"
- IF $SNDchoice eq "0"
- skip OmniPlay
- ENDIF
- IF $SNDchoice eq "1"
- skip Play16
- ENDIF
- IF $SNDchoice eq "2"
- skip Play16HF
- ENDIF
- LAB Omniplay
- C:Requestfile >env:Soundfile TITLE "Which Audio File?"
- C:oplay $Soundfile
- endcli
- skip start
- LAB Play16
- C:Requestfile >env:Soundfile TITLE "Which Audio File?"
- C:play16 FILTER=OFF $Soundfile
- endcli
- skip start
- LAB play16HF
- C:Requestfile >env:Soundfile TITLE "Which Audio File?"
- C:Play16 FILTER=OFF HIFI $Soundfile
- endcli
- skip start
- ;END